@Varargs:
-<!-- ##### FUNCTION gtk_draw_hline ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@x1:
-@x2:
-@y:
-
-
-<!-- ##### FUNCTION gtk_draw_vline ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@y1_:
-@y2_:
-@x:
-
-
-<!-- ##### FUNCTION gtk_draw_shadow ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_polygon ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@points:
-@npoints:
-@fill:
-
-
-<!-- ##### FUNCTION gtk_draw_arrow ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@arrow_type:
-@fill:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_diamond ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_string ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@x:
-@y:
-@string:
-
-
-<!-- ##### FUNCTION gtk_draw_box ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_box_gap ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-@gap_side:
-@gap_x:
-@gap_width:
-
-
-<!-- ##### FUNCTION gtk_draw_check ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_extension ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-@gap_side:
-
-
-<!-- ##### FUNCTION gtk_draw_flat_box ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_focus ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_handle ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-@orientation:
-
-
-<!-- ##### FUNCTION gtk_draw_option ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_shadow_gap ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-@gap_side:
-@gap_x:
-@gap_width:
-
-
-<!-- ##### FUNCTION gtk_draw_slider ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-@orientation:
-
-
-<!-- ##### FUNCTION gtk_draw_tab ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@shadow_type:
-@x:
-@y:
-@width:
-@height:
-
-
-<!-- ##### FUNCTION gtk_draw_expander ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@x:
-@y:
-@expander_style:
-
-
-<!-- ##### FUNCTION gtk_draw_layout ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@use_text:
-@x:
-@y:
-@layout:
-
-
-<!-- ##### FUNCTION gtk_draw_resize_grip ##### -->
-<para>
-
-</para>
-
-@style:
-@window:
-@state_type:
-@edge:
-@x:
-@y:
-@width:
-@height:
-
-
<!-- ##### FUNCTION gtk_paint_arrow ##### -->
<para>
return FALSE;
}
-/**
- * gtk_draw_slider:
- * @style: a #GtkStyle
- @window: a #GdkWindow
- * @state_type: a state
- * @shadow_type: a shadow
- * @x: the x origin of the rectangle in which to draw a slider
- * @y: the y origin of the rectangle in which to draw a slider
- * @width: the width of the rectangle in which to draw a slider
- * @height: the height of the rectangle in which to draw a slider
- * @orientation: the orientation to be used
- *
- * Draws a slider in the given rectangle on @window using the
- * given style and orientation.
- */
-void
-gtk_draw_slider (GtkStyle *style,
- GdkWindow *window,
- GtkStateType state_type,
- GtkShadowType shadow_type,
- gint x,
- gint y,
- gint width,
- gint height,
- GtkOrientation orientation)
-{
- g_return_if_fail (GTK_IS_STYLE (style));
- g_return_if_fail (GTK_STYLE_GET_CLASS (style)->draw_slider != NULL);
-
- GTK_STYLE_GET_CLASS (style)->draw_slider (style, window, state_type, shadow_type, NULL, NULL, NULL, x, y, width, height, orientation);
-}
-
-/**
- * gtk_draw_layout:
- * @style: a #GtkStyle
- * @window: a #GdkWindow
- * @state_type: a state
- * @use_text: whether to use the text or foreground
- * graphics context of @style
- * @x: x origin
- * @y: y origin
- * @layout: the layout to draw
- *
- * Draws a layout on @window using the given parameters.
- */
-void
-gtk_draw_layout (GtkStyle *style,
- GdkWindow *window,
- GtkStateType state_type,
- gboolean use_text,
- gint x,
- gint y,
- PangoLayout *layout)
-{
- g_return_if_fail (GTK_IS_STYLE (style));
- g_return_if_fail (GTK_STYLE_GET_CLASS (style)->draw_layout != NULL);
-
- GTK_STYLE_GET_CLASS (style)->draw_layout (style, window, state_type, use_text,
- NULL, NULL, NULL,
- x, y, layout);
-}
-
/**
* gtk_style_set_background:
* @style: a #GtkStyle